home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / clisp-li.000 / clisp-li / clisp-1996-07-22 / NEWS < prev    next >
Encoding:
Text File  |  1996-07-21  |  37.7 KB  |  1,096 lines

  1.  
  2. 21 July 1996
  3. ============
  4.  
  5. Important note
  6. --------------
  7.  
  8. * Changed bytecode format. All .fas files generated by previous CLISP versions
  9.   are invalid and must be recompiled.
  10.  
  11. User visible changes
  12. --------------------
  13.  
  14. * X3J13 vote <72> is conditionally implemented: Objects other than symbols,
  15.   lists, numbers, characters, string, bit-vectors are now self-evaluating if
  16.   *PACKAGE* uses the COMMON-LISP package.
  17.  
  18. * The package CLOS is now among the default use list of a new package.
  19.   (USE-PACKAGE "CLOS") is not needed any more. To use PCL, you now need
  20.   to (UNUSE-PACKAGE "CLOS") explicitly.
  21.  
  22. * The bytecode format is now platform independent. As a consequence,
  23.   compiled functions can be printed readably when *PRINT-READABLY* = T.
  24.  
  25. * Built-in function objects (SUBRs) are now printed readably when
  26.   *PRINT-READABLY* = T, instead of signalling an error.
  27.  
  28. * Added a <c-type>, C-PTR-NULL to the FFI.  C-PTR-NULL will convert
  29.   NIL objects into NULL pointers (so that type conflicts can be avoided).
  30.  
  31. * Socket streams are implemented. New functions SOCKET-SERVER,
  32.   SOCKET-SERVER-CLOSE, SOCKET-SERVER-PORT, SOCKET-WAIT, SOCKET-ACCEPT,
  33.   SOCKET-CONNECT, SOCKET-STREAM-HOST, SOCKET-STREAM-PORT, SOCKET-SERVICE-PORT,
  34.   SOCKET-STREAM-PEER-HOST. See impnotes.txt for details.
  35.   Thanks to Marcus Daniels <marcus@sysc.pdx.edu> and
  36.   Marco Ramoni <M.Ramoni@open.ac.uk>.
  37.  
  38. * Pipe streams now support binary I/O.
  39.  
  40. * MAKE-INSTANCE now also works for DEFSTRUCT classes, and DEFSTRUCT classes
  41.   can now be subclassed via DEFCLASS with option :METACLASS STRUCTURE-CLASS.
  42.   Suggested by Manuel Kolp <kolp@qant.ucl.ac.be>.
  43.  
  44. * User defined methods on NO-APPLICABLE-METHOD now have a chance for a
  45.   corrective action. Thanks to Mark Thomas <thommark@access.digex.net>.
  46.  
  47. * APROPOS and DESCRIBE now tell you about symbols which name a type or class.
  48.  
  49. * During directory search, symbolic link loops are now ignored instead
  50.   of resulting in an error. Thanks to Dan Stanger.
  51.  
  52. * Fixed a CLOS bug: REMOVE-METHOD didn't work. 
  53.   Thanks to Roger Kehr <kehr@iti.informatik.th-darmstadt.de>.
  54.  
  55. * Fixed a bug in the compiler: A (MULTIPLE-VALUE-SETQ vars valform)
  56.   or (MULTIPLE-VALUE-BIND vars valform ...) form was miscompiled if
  57.   valform is known to produce a single value.
  58.   Thanks to Paul Graham <pg@das.harvard.edu>.  
  59.  
  60. * Fixed at least two bugs in the LOOP macro: FOR-AS-ACROSS clauses could
  61.   result in AREF signalling an out-of-bounds error at the end of the vector.
  62.   Initialisations for FOR-AS-= clauses could be executed in the wrong order.
  63.  
  64. * Fixed a bug: the functions ENCODE-UNIVERSAL-TIME and DECODE-UNIVERSAL-TIME
  65.   computed a wrong DST flag for time values between (T - 2h) and T, where
  66.   T denotes a DST switch time.
  67.  
  68. * Fixed two bugs in the foreign function interface: multi-dimensional arrays
  69.   and floating point numbers with value 0.0 were not correctly passed from
  70.   "foreign land" to "Lisp land". Thanks to Ken Olum <kdo@mit.edu>.
  71.  
  72. * Fixed a bug in the foreign function interface: call-ins which return
  73.   structures or unions would not compile correctly. Thanks to Michael Stoll.
  74.  
  75. * Fixed a bug: On Solaris, the function SYSTEM sometimes reported exit
  76.   status 0 although the command had failed.
  77.   Thanks to Brian F. Dennis <xjam@cs.Berkeley.edu>.
  78.  
  79. * Fixed a bug: LOGTEST didn't work correctly if both arguments were bignums.
  80.  
  81. * Fixed a bug in the floating point number printing routine:
  82.   In rare cases, a number was printed with more digits than necessary
  83.   (without, however, violating the print-read consistency). For example,
  84.   2.1416s29 printed as 2.14159s29, and 3.002618f-31 printed as 3.0026179f-31.
  85.  
  86. * Fixed a bug in ATAN: (ATAN y 0) with y < 0 returned pi/2 instead of -pi/2.
  87.  
  88. * Fixed a bug in XGCD which caused the results to be wrong with a small
  89.   probability, for example in the case (XGCD 77874422 32223899).
  90.  
  91. Other modifications
  92. -------------------
  93.  
  94. * The compiler now recognizes more function calls as inlinable: Cases like
  95.   (FUNCALL (LAMBDA ...) ...), (DECLAIM (INLINE F)) (MAPCAR #'F ...)
  96.   are now compiled as inline function calls. Previously you had to write
  97.   (FUNCTION (LAMBDA ...)) explicitly. Suggested by J÷rg H÷hle.
  98.  
  99.  
  100. 23 June 1995
  101. ============
  102.  
  103. Important note
  104. --------------
  105.  
  106. * Changed bytecode format. All .fas files generated by previous CLISP versions
  107.   are invalid and must be recompiled.
  108.  
  109. User visible changes
  110. --------------------
  111.  
  112. * X3J13 vote <106> is implemented: LAST has an optional argument. Thanks to
  113.   Pierpaolo Bernardi.
  114.  
  115. * X3J13 vote <87> is implemented: New function COMPLEMENT. Thanks to Pierpaolo
  116.   Bernardi.
  117.  
  118. * X3J13 vote <40> is partially implemented: New macro WITH-STANDARD-IO-SYNTAX.
  119.   Thanks to Pierpaolo Bernardi.
  120.  
  121. * X3J13 vote <98> is partially implemented: New macro WITH-HASH-TABLE-ITERATOR.
  122.   Thanks to Pierpaolo Bernardi.
  123.  
  124. * X3J13 vote <97> is implemented: New functions HASH-TABLE-REHASH-SIZE,
  125.   HASH-TABLE-REHASH-THRESHOLD, HASH-TABLE-SIZE, HASH-TABLE-TEST.
  126.   Thanks to Pierpaolo Bernardi.
  127.  
  128. * X3J13 votes <69> and <70> are implemented: New declaration DYNAMIC-EXTENT.
  129.  
  130. * The dpANS macro LAMBDA is implemented.
  131.  
  132. * The dpANS declaration IGNORABLE is implemented.
  133.  
  134. * The dpANS function CONSTANTLY is implemented. Thanks to Pierpaolo Bernardi.
  135.  
  136. * Better syntax checking for the CASE macro. Thanks to Pierpaolo Bernardi.
  137.  
  138. * The user interface language may be chosen through the environment variable
  139.   LANG as well.
  140.  
  141. * The pretty printer now indents lists spanning more than one line by two
  142.   spaces, instead of one. New variable *PRINT-INDENT-LISTS*.
  143.  
  144. * *PRINT-PRETTY* is now initially T.
  145.  
  146. * Foreign function interface: New foreign type constructor FFI:C-ARRAY-MAX,
  147.   implements zero-terminated arrays of bounded size.
  148.  
  149. * On Unix, 8-bit characters are legal in pathnames if the operating system
  150.   accepts them.
  151.  
  152. * On DOS, #\Newline is converted to CR/LF when doing character output to
  153.   unbuffered file streams (referring to special files).
  154.  
  155. * Fixed a bug in the interpreter and compiler: A MULTIPLE-VALUE-SETQ form
  156.   which assigns to a symbol macro expanded to a wrong form; compiling it
  157.   produced a warning. Thanks to Pierpaolo Bernardi.
  158.  
  159. * Fixed a bug in the compiler: Some CASE form with duplicate keys, when
  160.   compiled, chose the wrong clause to be executed. Thanks to Pierpaolo
  161.   Bernardi.
  162.  
  163. * Fixed a bug in the #+/#- reader macros. (LIST #+FOO #-BAR 1 2 3) now returns
  164.   (2 3), not (3).
  165.  
  166. * Fixed a bug in LOG: (LOG x^n x^m), where n, m are integers, |m| > 1, and
  167.   x is a rational number /= 1, now correctly returns n/m. Previously,
  168.   (LOG 2 4) returned 1/0.
  169.  
  170. * Fixed a CLOS bug: Using the :DOCUMENTATION option in DEFGENERIC declarations
  171.   for function names of the form (SETF symbol) signalled an error. Thanks to
  172.   Pierpaolo Bernardi.
  173.  
  174. * Fixed a bug in DEFSETF: An IGNORE declaration for the store variable had
  175.   no effect. Thanks to Pierpaolo Bernardi.
  176.  
  177. Other modifications
  178. -------------------
  179.  
  180. * The structure of external modules has changed a bit.
  181.  
  182.  
  183. 25 April 1995
  184. =============
  185.  
  186. User visible changes
  187. --------------------
  188.  
  189. * Michael Stoll has written a graphical user interface for CLISP under
  190.   NeXTstep.
  191.  
  192. * Added a foreign language module WILDCARD for wildcard matching.
  193.  
  194. * Added a foreign language module REGEXP for Unix-style regular expression
  195.   matching and searching.
  196.  
  197. * X3J13 vote <94> is implemented: Calling GENSYM has no side effects except
  198.   incrementing the counter. New variable *GENSYM-COUNTER*.
  199.  
  200. * New macro FORMATTER converts a FORMAT control string to a function.
  201.  
  202. * Some FORMAT fixes:
  203.   + X3J13 vote <81> is implemented: The FORMAT ~:^ directive is more useful.
  204.     Warning: Old style "~:^" directives need to be converted to "~#:^".
  205.   + X3J13 vote <82> is implemented: The FORMAT ~D, ~B, ~O, ~X, ~R directives
  206.     accept an optional comma-interval parameter.
  207.   + X3J13 vote <84> is implemented: FORMAT ~C outputs characters with no bits
  208.     as if by WRITE-CHAR.
  209.   + Handling of ~^ within the FORMAT ~? directive.
  210.  
  211. * X3J13 vote <167> is implemented: New types FILE-STREAM, SYNONYM-STREAM,
  212.   BROADCAST-STREAM, CONCATENATED-STREAM, TWO-WAY-STREAM, ECHO-STREAM,
  213.   STRING-STREAM. New functions OPEN-STREAM-P, SYNONYM-STREAM-SYMBOL,
  214.   BROADCAST-STREAM-STREAMS, CONCATENATED-STREAM-STREAMS,
  215.   TWO-WAY-STREAM-INPUT-STREAM, TWO-WAY-STREAM-OUTPUT-STREAM,
  216.   ECHO-STREAM-INPUT-STREAM, ECHO-STREAM-OUTPUT-STREAM.
  217.  
  218. * New condition type PRINT-NOT-READABLE.
  219.   New function PRINT-NOT-READABLE-OBJECT.
  220.  
  221. * New function FINALIZE. (FINALIZE object function) has the effect that
  222.   function will be called when object is being garbage collected.
  223.  
  224. * DRIBBLE now also redirects *ERROR-OUTPUT*, *TRACE-OUTPUT*, *QUERY-IO*,
  225.   *DEBUG-IO* if they refer to *TERMINAL-IO*.
  226.  
  227. * Calling SYMBOL-VALUE on a symbol defined as global symbol macro now returns
  228.   the value of the expansion. New function SYMBOL-MACRO-EXPAND.
  229.  
  230. * Add FFI to the *FEATURES* if the foreign language interface is present.
  231.  
  232. * Fixed a bug: An IGNORE declaration for a macro's &ENVIRONMENT argument now
  233.   has an effect.
  234.  
  235. * Fixed a couple of bugs in the foreign language interface: Passing zero size
  236.   arrays did not work, parameters with mode :OUT did not work on SPARC and
  237.   HP-PA, and some error messages were deficient.
  238.  
  239. * Fixed a bogus error message in SET-DISPATCH-MACRO-CHARACTER.
  240.  
  241. Other modifications
  242. -------------------
  243.  
  244. * Speed up compiled calls to FORMAT with literal control string by use of
  245.   FORMATTER.
  246.  
  247.  
  248. 4 April 1995
  249. ============
  250.  
  251. User visible changes
  252. --------------------
  253.  
  254. * The initial value of *PACKAGE* can be specified by a command line option.
  255.  
  256. * X3J13 vote <6> is implemented: New place ROW-MAJOR-AREF.
  257.  
  258. * X3J13 vote <126> is implemented: New function DELETE-PACKAGE.
  259.  
  260. * X3J13 vote <14> is implemented: Closing a synonym stream does not close
  261.   its constituent stream.
  262.  
  263. * Foreign language interface for C and ANSI C. New package FFI. New macros
  264.   FFI:DEF-C-TYPE, FFI:DEF-C-VAR, FFI:DEF-C-CALL-OUT, FFI:DEF-C-CALL-IN,
  265.   FFI:DEF-C-ENUM, FFI:DEF-C-STRUCT, FFI:DEF-CALL-OUT, FFI:DEF-CALL-IN,
  266.   FFI:ELEMENT, FFI:DEREF, FFI:SLOT, FFI:CAST, FFI:TYPEOF, FFI:SIZEOF,
  267.   FFI:BITSIZEOF.
  268.   This currently works only on Unix and only with the CPUs
  269.   i386/486/586, m680x0, Mips, SPARC, DEC Alpha, HP-PA, RS/6000.
  270.   Warning: (COMPILE-FILE "filename.lsp") now overwrites the file "filename.c".
  271.  
  272. * New macros MUFFLE-CERRORS and APPEASE-CERRORS. During their execution,
  273.   continuable errors are handled by the function CONTINUE. MUFFLE-CERRORS
  274.   does this silently, APPEASE-CERRORS prints the error as a warning.
  275.  
  276. * New macro EXIT-ON-ERROR. During its execution, non-continuable errors
  277.   cause CLISP to exit with error status.
  278.  
  279. * The function ED, when asked to edit a non-existent file, now creates that
  280.   file instead of signalling an error.
  281.  
  282. * When a non-absolute pathname is specified for the -o command line option
  283.   (destination file of a compilation), it is interpreted as relative to the
  284.   current directory, not relative to the source file of the compilation.
  285.  
  286. * The readline library now uses the last column of the screen if the terminal
  287.   is an xterm, for example. Work done by Chet Ramey.
  288.  
  289. * Fixed two bugs in the LOOP macro: FOR-AS-ACROSS clauses could result in AREF
  290.   signalling an out-of-bounds error at the end of the vector. Initialisations
  291.   for FOR-AS-= clauses could be executed in the wrong order.
  292.  
  293. * Fixed a bug in the compiler which caused LOAD-TIME-VALUE forms to be
  294.   evaluated at compile time.
  295.  
  296. * Fixed a bug in the debugger: Choosing a restart Rnnn always invoked the
  297.   last restart listed, not the chosen one.
  298.  
  299. * Fixed a bug: (CLOSE *TERMINAL-IO*) signals an error again.
  300.  
  301. * On DOS and OS/2, the Lisp reader now treats Ctrl-Z as whitespace.
  302.  
  303. * The -I command line option now tells the readline library to handle the Tab
  304.   character as normal self-inserting character.
  305.  
  306. * Unix version only: DISASSEMBLE can display machine instructions, provided
  307.   that GNU gdb is present.
  308.  
  309. Other modifications
  310. -------------------
  311.  
  312. * Generational garbage collection now also works on IRIX 5.2.
  313.  
  314. * Generational garbage collection and support for immutable objects don't
  315.   exclude each other any more.
  316.  
  317.  
  318. 1 January 1995
  319. ==============
  320.  
  321. Important note
  322. --------------
  323.  
  324. * Changed bytecode format. All .fas files generated by previous CLISP versions
  325.   are invalid and must be recompiled.
  326.  
  327. User visible changes
  328. --------------------
  329.  
  330. * The destination file of a compilation can be specified by a command line
  331.   option.
  332.  
  333. * X3J13 vote <152> is implemented: REDUCE has a keyword argument :KEY.
  334.  
  335. * The printed representation of file streams of element type STRING-CHAR now
  336.   contains a line number.
  337.  
  338. * Fixed a bug which caused the interpreter to signal an error when evaluating
  339.   nested DEFUNs.
  340.  
  341. * Fixed a bug which could cause a crash when a GC occurred during single or
  342.   double float subtraction.
  343.  
  344. Other modifications
  345. -------------------
  346.  
  347. * Generational garbage collection now also works on NeXTstep and OSF/1 3.0.
  348.  
  349.  
  350. 26 October 1994
  351. ===============
  352.  
  353. Important note
  354. --------------
  355.  
  356. * Changed bytecode format. All .fas files generated by previous CLISP versions
  357.   are invalid and must be recompiled.
  358.  
  359. User visible changes
  360. --------------------
  361.  
  362. * X3J13 vote <77> is implemented: CL:FLET, CL:LABELS, CL:MACROLET allow
  363.   declarations.
  364.  
  365. * X3J13 vote <78> is implemented: CL:FLET, CL:LABELS, CL:MACROLET, DEFTYPE,
  366.   DEFSETF, DEFINE-SETF-METHOD establish an implicit BLOCK.
  367.  
  368. * X3J13 vote <128> is implemented: MAKE-PATHNAME, PATHNAME-HOST,
  369.   PATHNAME-DEVICE, PATHNAME-DIRECTORY, PATHNAME-NAME, PATHNAME-TYPE have
  370.   a keyword argument :CASE. Thanks to Marcus Daniels.
  371.  
  372. * X3J13 vote <137> is implemented: New functions WILD-PATHNAME-P,
  373.   PATHNAME-MATCH-P and TRANSLATE-PATHNAME. Thanks to Marcus Daniels.
  374.  
  375. * X3J13 vote <130> is implemented: New built-in type LOGICAL-PATHNAME.
  376.   New place LOGICAL-PATHNAME-TRANSLATIONS. New functions LOGICAL-PATHNAME,
  377.   TRANSLATE-LOGICAL-PATHNAME, LOAD-LOGICAL-PATHNAME-TRANSLATIONS,
  378.   COMPILE-FILE-PATHNAME. Thanks to Marcus Daniels.
  379.  
  380. * X3J13 vote <132> is implemented: Synonym streams to file streams are
  381.   allowed as pathnames.
  382.  
  383. * Amiga version: SCREEN package is implemented. Thanks to J÷rg H÷hle.
  384.  
  385. * The debugger emits some more messages to *DEBUG-IO*, not *ERROR-OUTPUT*.
  386.  
  387. * (COERCE symbol 'FUNCTION) now works.
  388.  
  389. * Fixed a bug in ENOUGH-NAMESTRING: In many cases, a relative directory
  390.   specification was returned instead of an absolute directory specification.
  391.  
  392. * Fixed a CLOS bug which caused (DEFCLASS FOO (STANDARD-OBJECT) ()) and
  393.   (DEFINE-CONDITION FOO (CONDITION) ()) to signal errors.
  394.  
  395. * Fixed a bug: In some situations, USE-PACKAGE reported a name conflict when
  396.   there was none.
  397.  
  398. * Fixed a bug: (READ-CHAR-NO-HANG stream nil eof-object) now signals an error
  399.   if stream is not an input stream. Previously it returned eof-object.
  400.  
  401. * Fixed a bug: On some Unix systems, (FINISH-OUTPUT *TERMINAL-IO*) signalled
  402.   an error if standard output was redirected to a file.
  403.  
  404. * (SQRT 0) now returns an integer 0 instead of a floating-point 0.0.
  405.  
  406. * Readline library: Fixed a small problem with input prompts longer than the
  407.   screen width.
  408.  
  409. * Fixed three bugs in the built-in editor. One of them made the editor
  410.   entirely unusable.
  411.  
  412. Portability
  413. -----------
  414.  
  415. * On DOS, the readline library now handles the /!INPUTRC and history files
  416.   correctly.
  417.  
  418. Other modifications
  419. -------------------
  420.  
  421. * Generational garbage collection now also works on Linux (1.1.52 or newer).
  422.  
  423. * On Unix, external modules written in C can be linked to CLISP without
  424.   recompiling CLISP from source. For example, the STDWIN library.
  425.  
  426.  
  427. 1 September 1994
  428. ================
  429.  
  430. User visible changes
  431. --------------------
  432.  
  433. * The DEFCONSTANT warning about redefinition of a constant is also inhibited
  434.   if the constant's new and old values are the same string (in the sense of
  435.   EQUAL). Thanks to Marcus Daniels.
  436.  
  437. * Unix version only: The daylight saving time flag of a time zone (eighth
  438.   value of GET-DECODED-TIME and DECODE-UNIVERSAL-TIME) is now correct.
  439.  
  440.  
  441. 23 August 1994
  442. ==============
  443.  
  444. User visible changes
  445. --------------------
  446.  
  447. * X3J13 vote <64> is implemented: New macro DESTRUCTURING-BIND.
  448.  
  449. * The function ED can now edit functions that have been entered in
  450.   interpreted form even if they have later been compiled.
  451.  
  452. * New function UNCOMPILE. (UNCOMPILE function-name) undoes the effect of
  453.   (COMPILE function-name) if the function's definition had been entered
  454.   in interpreted form.
  455.  
  456. * The OPEN option :IF-EXISTS :RENAME-AND-DELETE now deletes the renamed
  457.   file. Previously :RENAME-AND-DELETE was equivalent to :RENAME.
  458.  
  459. * (LISP-IMPLEMENTATION-VERSION) returns a more precise version string.
  460.  
  461. * Readline library: Completion of a function call with no arguments
  462.   automatically adds the closing parenthesis.
  463.  
  464. * Readline library: When a closing parenthesis is typed, the corresponding
  465.   opening parenthesis is displayed.
  466.  
  467. Other modifications
  468. -------------------
  469.  
  470. * Copyright clarification.
  471.  
  472. * Added a readline manual page.
  473.  
  474.  
  475. 4 July 1994
  476. ===========
  477.  
  478. User visible changes
  479. --------------------
  480.  
  481. * X3J13 votes <115> and <114> are implemented: an elaborate LOOP macro.
  482.   New macro LOOP-FINISH.
  483.   Warning: The scoping rules for the iteration variables are hairy. If a
  484.   FOR/AS initialisation form refers to an iteration variable of a subsequent
  485.   FOR/AS clause, the effects are implementation dependent!
  486.  
  487. * X3J13 vote <120> is implemented: New function MAP-INTO.
  488.  
  489. * X3J13 vote <79> is implemented: New constants
  490.   LEAST-POSITIVE-NORMALIZED-SHORT-FLOAT,
  491.   LEAST-NEGATIVE-NORMALIZED-SHORT-FLOAT,
  492.   LEAST-POSITIVE-NORMALIZED-SINGLE-FLOAT,
  493.   LEAST-NEGATIVE-NORMALIZED-SINGLE-FLOAT,
  494.   LEAST-POSITIVE-NORMALIZED-DOUBLE-FLOAT,
  495.   LEAST-NEGATIVE-NORMALIZED-DOUBLE-FLOAT,
  496.   LEAST-POSITIVE-NORMALIZED-LONG-FLOAT,
  497.   LEAST-NEGATIVE-NORMALIZED-LONG-FLOAT.
  498.  
  499. * The macro WITH-OUTPUT-TO-PRINTER now also works on DOS.
  500.  
  501. * Fixed a bug in DO-SYMBOLS: A symbol which is exported from a used package
  502.   was considered accessible in the using package even if it was shadowed by
  503.   another present symbol of the same name.
  504.  
  505. * Fixed a bug in the debugger which caused the BACKTRACE commands to print
  506.   garbage if the current user interface language was not english.
  507.  
  508.  
  509. 22 June 1994
  510. ============
  511.  
  512. User visible changes
  513. --------------------
  514.  
  515. * French support is now complete. Thanks to J÷rg H÷hle.
  516.  
  517. * The user interface language (english, german or french) can now be chosen
  518.   at startup time through a command line option. The constant *LANGUAGE* has
  519.   been removed, and its value has been removed from *FEATURES*. New macros
  520.   ENGLISH, DEUTSCH, FRANCAIS and LANGUAGE-CASE.
  521.  
  522. * There is a command line option that makes CLISP behave more like what
  523.   ILISP (a popular Emacs LISP interface) expects.
  524.  
  525. * The function CLOS:CALL-NEXT-METHOD can now be called with arguments, but
  526.   the check that the set of applicable methods must be the same as for the
  527.   original arguments will be bypassed.
  528.  
  529. * New functions READ-CHAR-SEQUENCE, WRITE-CHAR-SEQUENCE, READ-BYTE-SEQUENCE,
  530.   WRITE-BYTE-SEQUENCE which perform fast block I/O.
  531.  
  532. * Errors of type FLOATING-POINT-UNDERFLOW are inhibited in floating point
  533.   computations (and zero is returned instead) during execution of the new
  534.   macro WITHOUT-FLOATING-POINT-UNDERFLOW.
  535.  
  536. * X3J13 vote <95> is implemented: If the readtable argument passed to
  537.   GET-MACRO-CHARACTER and GET-DISPATCH-MACRO-CHARACTER is NIL, the standard
  538.   readtable is used.
  539.  
  540. * PROBE-FILE doesn't report an error any more if an intermediate directory
  541.   in the path doesn't exist. NIL is returned instead.
  542.  
  543. * The DEFCONSTANT warning about redefinition of a constant is inhibited if
  544.   the constant's new and old values are the same (in the sense of EQL).
  545.   Thanks to Marcus Daniels.
  546.  
  547. * The function INTERACTIVE-STREAM-P knows that if the terminal stream is
  548.   referring to a regular file (via input redirection) it is not interactive.
  549.  
  550. * There is a user programmable kind of streams, called generic streams.
  551.   New functions MAKE-GENERIC-STREAM, GENERIC-STREAM-CONTROLLER,
  552.   GENERIC-STREAM-P, GENERIC-STREAM-READ-CHAR, GENERIC-STREAM-READ-BYTE,
  553.   GENERIC-STREAM-LISTEN, GENERIC-STREAM-WRITE-CHAR, GENERIC-STREAM-WRITE-BYTE,
  554.   GENERIC-STREAM-WRITE-STRING, GENERIC-STREAM-CLEAR-INPUT,
  555.   GENERIC-STREAM-CLEAR-OUTPUT, GENERIC-STREAM-FINISH-OUTPUT,
  556.   GENERIC-STREAM-FORCE-OUTPUT, GENERIC-STREAM-CLOSE.
  557.   See impnotes.txt for details. Thanks to Marcus Daniels and Don Cohen.
  558.  
  559. * The macro WITH-OUTPUT-TO-PRINTER may now also work on OS/2.
  560.  
  561. * Fixed a CLOS bug: Generic functions with both optional and keyword
  562.   arguments didn't work.
  563.  
  564. * Fixed a serious bug in the compiler which caused incorrect code to be
  565.   generated for functions like (LAMBDA (X) (SETQ X 1)).
  566.  
  567. * Fixed a serious bug in the compiler which caused the compiler to crash
  568.   when compiling functions which contain two or more calls to ASSERT.
  569.  
  570. * Fixed a bug: The macroexpander of MULTIPLE-VALUE-SETQ built up a
  571.   syntactically illegal form.
  572.  
  573. * Fixed a bug in the reader: When reading pathnames from the syntax
  574.   #S(PATHNAME ...), #n# references in pathname components were not
  575.   resolved prior to calling MAKE-PATHNAME.
  576.  
  577. * Fixed a bug in the reader: (read-from-string "1/") signalled an error
  578.   of type DIVISION-BY-ZERO.
  579.  
  580. * Fixed a bug in the terminal stream: If several consecutive READ-LINE
  581.   operations on the terminal stream were performed without any text
  582.   containing newlines being output between them, the prompt finally got
  583.   duplicated and then became longer and longer.
  584.  
  585. * Fixed a bug in the readline library (bad handling of prompts longer than
  586.   one line). Thanks to Marcus Daniels.
  587.  
  588. Installation
  589. ------------
  590.  
  591. * All non-Unix versions: Setting the local time zone should now be much
  592.   easier. 122 time zone names are supported.
  593.  
  594.  
  595. 8 January 1994
  596. ==============
  597.  
  598. None.
  599.  
  600.  
  601. 7 January 1994
  602. ==============
  603.  
  604. Important note
  605. --------------
  606.  
  607. * Changed bytecode format. All .fas files generated by previous CLISP versions
  608.   are invalid and must be recompiled.
  609.  
  610. User visible changes
  611. --------------------
  612.  
  613. * X3J13 votes <186> and <31> are implemented: the Common Lisp Condition System.
  614.   New macros
  615.     DEFINE-CONDITION, IGNORE-ERRORS, HANDLER-CASE, HANDLER-BIND,
  616.     RESTART-CASE, WITH-RESTARTS, WITH-SIMPLE-RESTART, RESTART-BIND,
  617.     WITH-CONDITION-RESTARTS,
  618.   new types
  619.     RESTART, CONDITION, SERIOUS-CONDITION, ERROR, PROGRAM-ERROR, CONTROL-ERROR,
  620.     ARITHMETIC-ERROR, DIVISION-BY-ZERO, FLOATING-POINT-OVERFLOW,
  621.     FLOATING-POINT-UNDERFLOW, CELL-ERROR, UNBOUND-VARIABLE, UNDEFINED-FUNCTION,
  622.     TYPE-ERROR, PACKAGE-ERROR, STREAM-ERROR, END-OF-FILE, FILE-ERROR,
  623.     STORAGE-CONDITION, WARNING,
  624.     SIMPLE-CONDITION, SIMPLE-ERROR, SIMPLE-TYPE-ERROR, SIMPLE-WARNING,
  625.   new functions
  626.     MAKE-CONDITION, SIGNAL, COMPUTE-RESTARTS, FIND-RESTART, INVOKE-RESTART,
  627.     INVOKE-RESTART-INTERACTIVELY, ABORT, CONTINUE, MUFFLE-WARNING, STORE-VALUE,
  628.     USE-VALUE, INVOKE-DEBUGGER, RESTART-NAME,
  629.     ARITHMETIC-ERROR-OPERATION, ARITHMETIC-ERROR-OPERANDS, CELL-ERROR-NAME,
  630.     TYPE-ERROR-DATUM, TYPE-ERROR-EXPECTED-TYPE, PACKAGE-ERROR-PACKAGE,
  631.     STREAM-ERROR-STREAM, FILE-ERROR-PATHNAME, SIMPLE-CONDITION-FORMAT-STRING,
  632.     SIMPLE-CONDITION-FORMAT-ARGUMENTS,
  633.   new variables
  634.     *BREAK-ON-SIGNALS*, *DEBUGGER-HOOK*.
  635.   See impnotes.txt for details. Thanks to David Gadbois who wrote most of this.
  636.  
  637. * X3J13 vote <40> is partially implemented: New variable *PRINT-READABLY*.
  638.  
  639. * X3J13 vote <34> is implemented: Arrays and packages may now appear as
  640.   constants in compiled code.
  641.  
  642. * X3J13 vote <90> is implemented: FUNCTIONP on symbols and conses now always
  643.   returns NIL. The type FUNCTION is disjoint from SYMBOL and CONS.
  644.   (COERCE object 'FUNCTION) is implemented.
  645.   Warning: Old style calls like
  646.     (FUNCTIONP object)
  647.   may need to be converted to
  648.     (OR (FUNCTIONP object)
  649.         (SYMBOLP object)
  650.         (AND (CONSP object) (EQ (CAR object) 'LAMBDA))
  651.     )
  652.   This fixes a CLOS bug: (TYPEP object 'FUNCTION) wasn't equivalent to
  653.   (TYPEP object (FIND-CLASS 'FUNCTION)).
  654.  
  655. * Two new debugger commands Break+ and Break- permit to set resp. remove
  656.   breakpoints at specified EVAL or APPLY frames.
  657.  
  658. * Warnings and errors produced by COMPILE-FILE are now accompanied by
  659.   source line number information.
  660.  
  661. * The sub-char passed as second argument to read dispatch macros is now
  662.   exactly the first non-digit read from the stream. Previously it was its
  663.   upper-case equivalent.
  664.  
  665. * DEFPACKAGE now accepts an option (:DOCUMENTATION doctring).
  666.  
  667. * DIRECTORY now accepts a keyword argument :CIRCLE. If it is non-NIL,
  668.   the directory search for ".../" and "**/" wildcards on Unix avoids endless
  669.   loops that may result from symbolic links.
  670.  
  671. * The variable *LOAD-PATHS* in the Unix versions of config.lsp now uses
  672.   "~/" (the home directory at run time) instead of #"~/" (the home directory
  673.   at installation time). Thanks to Gabor Herr.
  674.  
  675. * Unix and OS/2 versions: New dangerous functions MAKE-PIPE-IO-STREAM,
  676.   RUN-SHELL-COMMAND and RUN-PROGRAM.
  677.  
  678. * Unix version only:
  679.   The command shell used by MAKE-PIPE-...-STREAM is now always /bin/sh; the
  680.   environment variable SHELL is only used as interactive shell.
  681.   Fixed a race condition in the functions EXECUTE, MAKE-PIPE-INPUT-STREAM,
  682.   MAKE-PIPE-OUTPUT-STREAM that caused the child process to fail mysteriously.
  683.  
  684. * Attacks such as  (DO-ALL-SYMBOLS (S) (UNLESS (CONSTANTP S) (SET S NIL)))
  685.   no longer crash CLISP.
  686.  
  687. * Fixed a CLOS bug: DEFCLASS failed to signal an error if several direct slots
  688.   had identical names.
  689.  
  690. * Fixed a bug in the reader: When reading hash tables which contain #n#
  691.   references, the hash codes must be recomputed after resolving the
  692.   references. Thanks to Marcus Daniels.
  693.  
  694. * Fixed a bug in the printer: Printed representations with two different
  695.   #1= definitions could result when PRINT-OBJECT methods were called while
  696.   *PRINT-CIRCLE* was true. Thanks to Marcus Daniels.
  697.  
  698.  
  699. 8 November 1993
  700. ===============
  701.  
  702. User visible changes
  703. --------------------
  704.  
  705. * The STDWIN library can now be made part of CLISP by calling makemake with
  706.   argument --with-stdwin.
  707.  
  708. * X3J13 vote <108> is implemented: New packages COMMON-LISP and
  709.   COMMON-LISP-USER.
  710.  
  711. * X3J13 vote <112> is implemented:
  712.   LOAD binds the variables *LOAD-PATHNAME* and *LOAD-TRUENAME*, COMPILE-FILE
  713.   binds the variables *COMPILE-FILE-PATHNAME* and *COMPILE-FILE-TRUENAME*.
  714.   New variables *LOAD-PATHNAME*, *LOAD-TRUENAME*, *COMPILE-FILE-PATHNAME*,
  715.   *COMPILE-FILE-TRUENAME*.
  716.  
  717. * X3J13 vote <26> is implemented: COMPILE-FILE has a keyword argument :PRINT.
  718.   New variables *COMPILE-WARNINGS*, *COMPILE-VERBOSE*, *COMPILE-PRINT*.
  719.  
  720. * Fixed two bugs in DEFPACKAGE: *PACKAGE* is not modified by DEFPACKAGE
  721.   any more, and the :INTERN option now works.
  722.  
  723. * Fixed FUNCTION-LAMBDA-EXPRESSION such that it works on built-in functions.
  724.   Thanks to France Dacar.
  725.  
  726. * Fixed a serious bug in GCD on 16-bit processors: (GCD x y) with
  727.   2^k - 2^(k-16) <= |x|,|y| < 2^k could cause a division by zero.
  728.  
  729.  
  730. 27 September 1993
  731. =================
  732.  
  733. User visible changes
  734. --------------------
  735.  
  736. * COMPILE-FILE now handles top-level forms as described in CLtL2 p. 90:
  737.   The macroexpansion of a top-level form is considered a top-level form.
  738.   When a top-level form is a PROGN, LOCALLY, COMPILER-LET, SYMBOL-MACROLET
  739.   or MACROLET form, the subforms of its body are considered top-level forms
  740.   too and are compiled separately.
  741.   This allows things like
  742.     (PROGN (DEFCONSTANT X 3141) (DEFUN GET-X () X))
  743.   or
  744.     (PROGN (DEFCLASS SHIP () ()) (DEFUN SHIP-P (X) (TYPEP X 'SHIP)))
  745.   to work.
  746.   Warning: If you want to inhibit this splitting into separate forms (for
  747.   example, because several of the forms refer to the same uninterned symbol),
  748.   you have to use (LET () (PROGN ...)) instead of (PROGN ...).
  749.  
  750. * X3J13 vote <144> is implemented: New macro DECLAIM.
  751.  
  752. * X3J13 vote <113> is implemented: The macro LOCALLY is now a special form.
  753.  
  754. * Fixed a serious bug in the compiler: When compiling functions inline
  755.   whose parameters are special variables, incorrect code could be generated.
  756.  
  757. * Fixed a bug in the compiler which caused the compiler to crash in some
  758.   rare cases, notably when compiling Garnet-2.2.
  759.  
  760. * Fixed a bug that prevented the debugger commands DOWN and BOTTOM from
  761.   working on Linux and SunOS.
  762.  
  763. * Fixed a CLOS bug: Specifying &KEY without &REST in generic function
  764.   lambda lists didn't have the desired effect.
  765.  
  766. * DEFCLASS supports both :DEFAULT-INITARGS syntaxes.
  767.  
  768. * DEFGENERIC is more tolerant about invalid declarations.
  769.  
  770.  
  771. 1 September 1993
  772. ================
  773.  
  774. Important note
  775. --------------
  776.  
  777. * Changed bytecode format. All .fas files generated by previous CLISP versions
  778.   are invalid and must be recompiled.
  779.  
  780. User visible changes
  781. --------------------
  782.  
  783. * Unix version only: The command line option -M now also accepts memory images
  784.   that were compressed using GNU gzip.
  785.  
  786. * Fixed a CLOS bug: MAKE-INSTANCE now behaves as if it were calling
  787.   INITIALIZE-INSTANCE, and INITIALIZE-INSTANCE and REINITIALIZE-INSTANCE
  788.   behave as if they were calling SHARED-INITIALIZE.
  789.  
  790. * Fixed a CLOS bug: NO-APPLICABLE-METHOD failed to be called in some cases
  791.   when no method was applicable.
  792.  
  793. * Relating to X3J13 vote <89>: The first argument to the functions FUNCALL and
  794.   APPLY, denoting a function, may now also be a list (SETF symbol).
  795.  
  796. * Fixed a bogus error message that occurred when storing an out-of-range
  797.   integer into an array of element-type (UNSIGNED-BYTE 32).
  798.  
  799.  
  800. 22 August 1993
  801. ==============
  802.  
  803. Important note
  804. --------------
  805.  
  806. * Changed bytecode format. All .fas files generated by previous CLISP versions
  807.   are invalid and must be recompiled.
  808.  
  809. User visible changes
  810. --------------------
  811.  
  812. * X3J13 vote <12> is partially implemented: Native CLOS. New package CLOS
  813.   containing the macros
  814.     DEFCLASS, DEFMETHOD, DEFGENERIC, GENERIC-FUNCTION, GENERIC-FLET,
  815.     GENERIC-LABELS, WITH-SLOTS, WITH-ACCESSORS,
  816.   the functions
  817.     FIND-CLASS, (SETF FIND-CLASS), CLASS-OF, CLASS-NAME, (SETF CLASS-NAME),
  818.     SLOT-VALUE, SLOT-BOUNDP, SLOT-MAKUNBOUND, SLOT-EXISTS-P,
  819.     CALL-NEXT-METHOD, NEXT-METHOD-P,
  820.     NO-APPLICABLE-METHOD, NO-PRIMARY-METHOD, NO-NEXT-METHOD,
  821.     FIND-METHOD, ADD-METHOD, REMOVE-METHOD, COMPUTE-APPLICABLE-METHODS,
  822.     METHOD-QUALIFIERS, FUNCTION-KEYWORDS, SLOT-MISSING, SLOT-UNBOUND,
  823.     PRINT-OBJECT, DESCRIBE-OBJECT, MAKE-INSTANCE, INITIALIZE-INSTANCE,
  824.     REINITIALIZE-INSTANCE, SHARED-INITIALIZE,
  825.   the classes
  826.     STANDARD-CLASS, STRUCTURE-CLASS, BUILT-IN-CLASS, STANDARD-OBJECT,
  827.     STANDARD-GENERIC-FUNCTION, STANDARD-METHOD and all predefined classes,
  828.   and the method combination
  829.     STANDARD.
  830.   See impnotes.txt for details. X3J13 vote <13> is implemented, too.
  831.  
  832. * X3J13 vote <63> is implemented: DESCRIBE receives the output stream as
  833.   optional argument. New function CLOS:DESCRIBE-OBJECT.
  834.  
  835. * X3J13 vote <149> is implemented: The second argument to SUBSEQ may now
  836.   be NIL. Thanks to Thomas Kirk.
  837.  
  838. * X3J13 vote <175> is implemented: TAILP now also works on dotted lists.
  839.  
  840. * X3J13 vote <124> is implemented: (DECLARE (OPTIMIZE (DEBUG ...))) is legal.
  841.  
  842. * The type specifier (EQL object), a synonym for (MEMBER object), is now
  843.   implemented.
  844.  
  845. * New DEFSTRUCT option :INHERIT which is exactly like :INCLUDE except that it
  846.   doesn't create new accessors for the inherited slots. Use this option to
  847.   avoid the problems that occur when using the same :CONC-NAME for the new
  848.   and the inherited structure.
  849.  
  850. * Fixed EXPORT and USE-PACKAGE: Don't signal a name conflict between the
  851.   symbol being exported and a symbol accessible in the using package if
  852.   the latter symbol is on the list of shadowing symbols of the using package.
  853.  
  854. * Fixed VECTOR-PUSH-EXTEND. It now works on vectors of dimension 0 and
  855.   on bit-vectors.
  856.  
  857. * Fixed PRINT-UNREADABLE-OBJECT: Don't output adjacent spaces.
  858.  
  859. * Fixed a bug in the reader that caused an endless loop or endless recursion
  860.   when resolving #n=/#n# references in objects that already contained cyclic
  861.   data structures, e.g. when reading (#1=a #.'#2=(b . #2#) #1#).
  862.  
  863. * Fixed a bogus error message in the complex number reader.
  864.  
  865.  
  866. 17 July 1993
  867. ============
  868.  
  869. User visible changes
  870. --------------------
  871.  
  872. * X3J13 vote <150> is mostly implemented: Reading and printing of symbols
  873.   (and characters with bits or fonts attributes) is now affected by
  874.   (READTABLE-CASE *READTABLE*), whose value may be one of :UPCASE, :DOWNCASE
  875.   and :PRESERVE. New place READTABLE-CASE.
  876.  
  877. * Support for immutable objects is implemented. Attempts to modify read-only
  878.   data will signal an error. Program text and quoted constants loaded from
  879.   files are considered read-only data. Never again will you be allowed to
  880.   write programs that destructively modify themselves!
  881.   This works only for Unix implementations with powerful virtual memory
  882.   management, currently only Linux and SunOS. To enable it, you have to
  883.   add -DIMMUTABLE to the CFLAGS in the makefile when building CLISP.
  884.  
  885. * Fixed DEFUN such that
  886.   (progn
  887.     (flet ((bar (x) (+ x 10))) (defun bar (y) (if (zerop y) 1 (bar (1- y))))
  888.     (bar 1)
  889.   )
  890.   returns 10 instead of 1.
  891.  
  892. * Fixed a bug in the compiler that caused the compiler to crash by endless
  893.   recursion and stack overflow when compiling assignments to symbol macros.
  894.  
  895.  
  896. 29 June 1993
  897. ============
  898.  
  899. User visible changes
  900. --------------------
  901.  
  902. * X3J13 vote <89> is implemented: (SETF symbol) is now a valid syntax for a
  903.   function name in (funname ...), (FUNCTION funname), (DEFUN funname ...),
  904.   (COMPILE funname ...), (DISASSEMBLE funname), (ED funname), FLET, LABELS etc.
  905.   New function FDEFINITION.
  906.  
  907. * X3J13 vote <173> is implemented: New special form SYMBOL-MACROLET. The
  908.   macroexpansion environment passed to macro expanders and to MACROEXPAND-1,
  909.   MACROEXPAND, GET-SETF-METHOD, GET-SETF-METHOD-MULTIPLE-VALUE now comprises
  910.   both the variable environment and the function environment.
  911.   New macro DEFINE-SYMBOL-MACRO.
  912.  
  913. * New macro PRINT-UNREADABLE-OBJECT.
  914.  
  915. * Fixed a bug: The string comparison functions STRING<, STRING>, STRING<=,
  916.   STRING>=, STRING/=, STRING-LESSP, STRING-GREATERP, STRING-NOT-GREATERP,
  917.   STRING-NOT-LESSP, STRING-NOT-EQUAL now return the index of the first mismatch
  918.   instead of T.
  919.  
  920. * Fixed a bug: The functions REMOVE-DUPLICATES and DELETE-DUPLICATES produced
  921.   an out-of-bounds error when called on a small sequence, with :FROM-END T
  922.   argument and without :END argument.
  923.  
  924.  
  925. 24 May 1993
  926. ===========
  927.  
  928. User visible changes
  929. --------------------
  930.  
  931. * New macro DEFPACKAGE.
  932.  
  933. * New function FUNCTION-LAMBDA-EXPRESSION.
  934.  
  935. * New package SCREEN containing some functions for random screen access
  936.   (Unix, DOS, OS/2, Atari, VMS versions only).
  937.  
  938. * X3J13 vote <5> is implemented: The value of *APPLYHOOK* must now be
  939.   a function of two arguments.
  940.  
  941. * X3J13 vote <104> is implemented: COMPILE-FILE now binds *READTABLE*.
  942.  
  943. * X3J13 vote <161> is implemented: SHADOW now accepts strings as well
  944.   as symbols.
  945.  
  946. * Fixed a bug in the compiler which caused the compiler to crash when
  947.   compiling (CASE key ...) forms with constant key.
  948.  
  949. * Fixed a bug in the compiler which produced unloadable .fas files
  950.   when compiling forms like (SETF ... (FUNCTION LIST)).
  951.  
  952. * Fixed a bogus error message in the AREF function.
  953.  
  954. * The built-in editor on Unix now handles the Delete key the same way
  955.   as the Backspace key or Ctrl-H.
  956.  
  957. * Fixed a bug in + that occasionally caused (- x x) to return a
  958.   long-float zero which was not EQL to the other zeroes of type LONG-FLOAT.
  959.  
  960. * Fixed a bug: Correctly do round-to-even when adding two long-floats.
  961.  
  962. * Fixed a bug: The destructive sequence functions DELETE etc. failed to
  963.   produce an error when called on a sequence of type LIST and with an :END
  964.   argument larger than the list's length.
  965.  
  966. * Corrected the branch cuts of the complex ATAN and ATANH functions.
  967.  
  968.  
  969. 5 April 1993
  970. ============
  971.  
  972. None.
  973.  
  974.  
  975. 30 March 1993
  976. =============
  977.  
  978. User visible changes
  979. --------------------
  980.  
  981. * Fixed a bug in + that caused the sign of (+ x y) to be wrong when x and y
  982.   were double-floats satisfying  0 < x < -y  or  0 > x > -y .
  983.  
  984. * New special form LOAD-TIME-VALUE.
  985.  
  986. * The function DIR now sorts its output.
  987.  
  988. * A new place (DEFAULT-DIRECTORY) manages the "current directory".
  989.  
  990. * When LOAD is called with a pathname as argument that contains a parent
  991.   directory component (".."): Ignore the variable *LOAD-PATHS*, avoid an error.
  992.  
  993. * Fixed TRACE so that functions calling TRACE are correctly handled by
  994.   COMPILE-FILE.
  995.  
  996.  
  997. 19 March 1993
  998. =============
  999.  
  1000. User visible changes
  1001. --------------------
  1002.  
  1003. * Replaced variable *TEMPFILE* by a function EDITOR-TEMPFILE.
  1004.  
  1005.  
  1006. 4 March 1993
  1007. ============
  1008.  
  1009. User visible changes
  1010. --------------------
  1011.  
  1012. * Fixed a bug in ADJOIN that caused ADJOJN and PUSHNEW to push (key item)
  1013.   instead of item onto the list when a :KEY argument was present.
  1014.  
  1015. * Amiga version: allow opening of "files" on special devices.
  1016.  
  1017. * OS/2 version: Long filenames on DOS (FAT) filesystems no longer produce
  1018.   errors. They are now silently truncated to 8+3 characters.
  1019.  
  1020. * Unix, Amiga, OS/2 versions: When a pathname is to be fully specified, no
  1021.   subdirectory wildcard "**/" or ".../" is allowed. Check this.
  1022.  
  1023.  
  1024. 21 February 1993
  1025. ================
  1026.  
  1027. User visible changes
  1028. --------------------
  1029.  
  1030. * Include test suite into distribution.
  1031.  
  1032. * Add COMMON-LISP and CLTL1 to the *FEATURES*.
  1033.  
  1034. * Fixed a bug in the compiler which caused the compiler to crash in some
  1035.   rare cases.
  1036.  
  1037. * Fixed a bug in WITH-OPEN-FILE: handle the case when OPEN returns NIL.
  1038.  
  1039. * Amiga version: Fixed bug in FILE-POSITION.
  1040.  
  1041. * Amiga version: Renamed REXX-WAIT-COMMAND to REXX-WAIT-SENT-COMMAND.
  1042.  
  1043.  
  1044. 3 February 1993
  1045. ===============
  1046.  
  1047. None.
  1048.  
  1049.  
  1050. 1 February 1993
  1051. ===============
  1052.  
  1053. User visible changes
  1054. --------------------
  1055.  
  1056. * Fixed handling of declarations in macros DO-SYMBOLS, DO-EXTERNAL-SYMBOLS,
  1057.   DO-ALL-SYMBOLS, DOSEQ, DOHASH.
  1058.  
  1059. * LISTEN on file streams opened with :DIRECTION :OUTPUT now returns NIL.
  1060.  
  1061. * Pathnames resulting from OPEN on special files are now called
  1062.   "file handle streams", they are unbuffered file streams.
  1063.   They can now be used as argument in situations where a pathname is expected.
  1064.  
  1065.  
  1066. 11 January 1993
  1067. ===============
  1068.  
  1069. User visible changes
  1070. --------------------
  1071.  
  1072. * Fixed meaning of :KEY argument for SUBLIS and NSUBLIS.
  1073.  
  1074. * DOS, OS/2 versions: adapted to emx 0.8f. This results in better
  1075.   *KEYBOARD-INPUT* on DOS and faster screen access on OS/2.
  1076.  
  1077. * Amiga version: implemented SHELL.
  1078.  
  1079. * OS/2 version: implemented MAKE-PIPE-INPUT-STREAM and MAKE-PIPE-OUTPUT-STREAM.
  1080.  
  1081. * compiler.lsp: Emit a warning when #'foo is used but foo is undefined.
  1082.  
  1083. * rexx.d, rexx.lsp: remove the trailing "p" from the keywords.
  1084.  
  1085. * init.lsp: don't call a macro a "Common Lisp function".
  1086.  
  1087. * stream.d, readline/readline.[ch]: exported rl_deprep_terminal such that a
  1088.   failing call to xmalloc() can now signal an ordinary error instead of exiting.
  1089.  
  1090.  
  1091. 1 January 1993
  1092. ==============
  1093.  
  1094. Release of first portable version of CLISP.
  1095.  
  1096.